laravel storage_path

大象笔记 > 标签 > laravel storage_path

Laravel 的文件存储 - Storage

记录一下 Laravel Storage 的常见用法 内容写入磁盘文件 > php artisan tinker >>> use Illuminate\Support\Facades\Storage; >>> Storage::put('test.txt', 'hello'); => true ls storage/app/ public/ test.txt 文件默认创建在 project/storage/app 目录下 获取文件存储的本地磁盘全路径 继续在 tinker 中测试一下 >>> storage_path() ...

阅读全文...